/* ====================== */
/* BASE STYLES AND RESETS */
/* ====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  overflow-x: hidden;
}

/* ============ */
/* CONTAINERS */
/* ============ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============ */
/* HEADER STYLES */
/* ============ */
.site-header {
  background-color: #000;
  padding: 10px 0;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: 1400px;
  height: auto;
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  gap: 15px;
}

/* Mobile Menu Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ============ */
/* LOGO STYLES */
/* ============ */
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: transparent;
  position: relative;
}

.logo-wrap img {
  height: auto;
  max-height: 90px;
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  background-color: transparent;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, 
              box-shadow 0.3s ease-in-out;
}

.logo-wrap img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.video-link {
  position: absolute;
  bottom: 0rem;
  right: 87rem;
  font-size: 0.7rem;
  color: #ff0000;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.video-link:hover {
  opacity: 1;
  color: #ff6600;
}

/* ================== */
/* NAVIGATION STYLES */
/* ================== */
.main-nav {
  transition: all 0.3s ease;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-transform: uppercase;
}

.main-nav ul li a:hover {
  color: #cf4d5f;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #cf4d5f;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* ===================== */
/* HERO SECTION STYLES */
/* ===================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 90px;
}

/* ===================== */
/* HERO CAROUSEL STYLES */
/* ===================== */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== */
/* VIDEO CONTAINER STYLES */
/* ===================== */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  background-color: #000;
  display: none;
}

.video-container.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Video Controls */
.unmute-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.unmute-button:hover {
  background: rgba(0,0,0,0.8);
}

.mute-indicator {
  position: absolute;
  bottom: 70px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 10;
  display: none;
}

/* Scroll Down Prompt */
.scroll-prompt {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  color: white;
  text-align: center;
}

.scroll-text {
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  animation: fadeInOut 2s infinite;
}

.scroll-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.scroll-arrow svg {
  width: 24px;
  height: 24px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

@keyframes fadeInOut {
  0%, 100% {
      opacity: 0.6;
  }
  50% {
      opacity: 1;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    margin-top: 70px;
    height: calc(100vh - 70px);
  }
  
  .video-container {
    top: 20px;
    height: calc(100vh - 70px);
  }
  
  /* Improved carousel image display */
  .slide img {
    object-fit: cover;
    object-position: center top;
  }
  
  /* Video container adjustments */
  .video-container video {
    object-fit: cover;
    object-position: center center;
  }
  
  .unmute-button {
    width: 36px;
    height: 36px;
    bottom: 15px;
    right: 15px;
  }
  
  .mute-indicator {
    bottom: 60px;
    right: 15px;
    font-size: 12px;
  }
  
  .scroll-text {
    font-size: 0.9rem;
  }
  
  .scroll-arrow {
    width: 36px;
    height: 36px;
  }
  
  .scroll-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    margin-top: 60px;
    height: calc(100vh - 60px);
  }
  /*
  .video-container {
    top: 20px;
    height: calc(100vh - 60px);
  }
  */

  .video-container {
    position: fixed; /* Ensure it covers the entire screen */
    top: 0;
    left: 0;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    z-index: 10;
    overflow: hidden; /* Prevent content overflow */
  }

  .video-container video {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    object-fit: cover; /* Ensure the video covers the container */
    object-position: center; /* Center the video */
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Optional overlay */
  }

  .unmute-button {
    bottom: 10px; /* Adjust for smaller screens */
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .mute-indicator {
    bottom: 50px;
    right: 10px;
    font-size: 10px;
    padding: 5px 8px;
  }
  
  /* More aggressive cropping for very small screens */
  .slide img {
    object-position: center 25%;
  }
  
  .unmute-button {
    width: 32px;
    height: 32px;
  }
  
  .mute-indicator {
    bottom: 50px;
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .scroll-text {
    font-size: 0.8rem;
  }
  
  .scroll-arrow {
    width: 32px;
    height: 32px;
  }
  
  .scroll-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* ===================== */
/* ABOUT SECTION STYLES */
/* ===================== */
.about {
  position: relative;
  filter: brightness(1.2);
  background: url('https://reach4india.com/wp-content/uploads/2024/12/Story-So-Far-scaled-1-2048x1123.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 8rem 0;
  text-align: center;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.about h2,
.about p {
  color: white;
}

.about h2 {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.about strong {
  color: #bd100f;
  font-weight: 700;
  text-shadow:
      0 0 1px rgba(255, 255, 255, 0.2), 
      0 0 2px rgba(255, 255, 255, 0.1);
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-line {
  display: block;
  font-size: 4rem;
}

.about-reach {
  color: #bd100f;
  font-size: 6rem;
  font-weight: 700;
  text-shadow:
      0 0 1px rgba(255, 255, 255, 0.2), 
      0 0 2px rgba(255, 255, 255, 0.1);
}

.about-network {
  color: white;
  font-size: 6rem;
}

/* ===================== */
/* AGENCIES SECTION */
/* ===================== */
.agencies {
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
  font-size: 1.5rem;
}

.agency-title{
  font-size: 3rem;
}

.agency-about-our {
  color: #bd100f;
  font-size: 3rem; 
}

/* Agencies Grid */
.agency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.agency-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}

.agency-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.agency-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agency-logo {
  max-width: 250px;
  max-height: 250px;
  height: 100%;
  width: 100%;
  margin-bottom: 3px;
}

.agency-card p {
  font-weight: 500;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* Brand-specific background and text colors */
.agency-ibroad7 {
  background-color: #e51c23;
  color: #ffffff;
}

.agency-logo-IBroad7 {
  max-width: 200px;
  max-height: 200px;
  height: 100%;
  width: 100%;
  margin-bottom: 16px;
}

.agency-IBroad7-Card{
  padding-top: 10%;
}

.agency-IBroad7-Card-text{
  padding-top: 0%;
}

.agency-mediavista {
  background-color: #f0f9ff;
  color: #00334d;
}

.agency-mediavista-Card{
  padding-bottom: 6%;
}

.agency-mediavista-Card-text{
  padding-top: 1%;
}

.agency-raasa {
  background-color: #000000;
  color: #ffffff;
}

.agency-logo-raasa {
  max-width: 250px;
  max-height: 200px;
  height: 100%;
  width: 100%;
  margin-bottom: 16px;
}

.agency-raasastudio-Card{
  padding-top: 4%;
}

.agency-raasastudio-Card-text{
  padding-bottom: 0%;
}

.agency-earshot {
  background-color: #fdf0fa;
  color: #212529;
}

.agency-earshot-Card{
  padding-top: 2%;
}

.agency-earshot-Card-text{
  padding-top: 0%;
}

.agency-logo[src*="raasastudio"] {
  background: linear-gradient(135deg, #2b2b2b, #3a3a3a);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* ===================== */
/* SERVICES SECTION */
/* ===================== */
.service-title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.service-title-we {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  color: #bd100f;
  margin-bottom: 1.5rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.service-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease-in-out, 
              box-shadow 0.3s ease-in-out;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #bd100f;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}

/* ===================== */
/* LEADERSHIP SECTION */
/* ===================== */
.leadership {
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.leadership-title{
  font-size: 3rem;
}

.leadership-about-our {
  color: #bd100f;
  font-size: 3rem; 
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.leader-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.leader-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.leader-image img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.leader-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #bd100f;
  font-weight: 600;
}

.leader-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ===================== */
/* CLIENTS SECTION */
/* ===================== */
.clients {
  padding: 4rem 0;
  background-color: #f8f9fa;
  position: relative;
}

.client-title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.client-title-our {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  color: #bd100f;
  margin-bottom: 1.5rem;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.white_bg {
  background-color: #ffffff;
}

.pt_110 {
  padding-top: 60px;
}

.pb_100 {
  padding-bottom: 60px;
}

.pb_60 {
  padding-bottom: 40px;
  font-size: 1.3rem;
}

.font_primary {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.text_xxxxl {
  font-size: 2.5rem;
}

.color_secondary_light {
  color: #333;
}

.text_uppercase {
  text-transform: uppercase;
}

.f_w_r {
  font-weight: 400;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
}

.rfm-marquee-container {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  mask-image: linear-gradient(
      to right,
      hsl(0 0% 0% / 0),
      hsl(0 0% 0% / 1) 20%,
      hsl(0 0% 0% / 1) 80%,
      hsl(0 0% 0% / 0)
  );
}

.rfm-marquee {
  display: flex;
  width: max-content;
  animation: marquee-left 40s linear infinite;
}

.rfm-marquee.reverse {
  animation: marquee-right 40s linear infinite;
}

.rfm-initial-child-container {
  display: flex;
}

.rfm-child {
  display: flex;
  gap: 4vw;
  align-items: center;
}
.marquee-content {
  display: flex;
  gap: 4vw;
}
.marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 100px;
  border-left: 1px solid #ddd;
  filter: grayscale(100%);
}

.marquee-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
}

.marquee-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes marquee-left {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
      transform: translateX(-50%);
  }
  100% {
      transform: translateX(0%);
  }
}

/* ===================== */
/* LOCAL SECTION */
/* ===================== */
.local {
  position: relative;
  filter: brightness(1.2);
  background: linear-gradient(rgba(255,255,255,0.23), rgba(255,255,255,0.23)),
              url('https://reach4india.com/wp-content/uploads/2024/12/Mask-Group-59-scaled-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333;
  padding: 4rem 0;
  min-height: 100vh;
}

.local-content {
  position: relative;
  max-width: 1000px;
  margin: 0 5%;
  padding: 0 3%;
  text-align: left;
}
.local-logo{
  margin-left: -1.2%;
}

.local-logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 2rem;
}

.local-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-right: 8%;
  max-width: 80%;
}

.stat-item {
  flex: 1 0 120px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffee00;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
}

.local-description p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 75%;
  margin-bottom: 0.5rem;
  margin-top: 3.7rem;
}

/* ===================== */
/* CONTACT SECTION */
/* ===================== */
.contact {
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #333;
}

.contact-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: invert(30%) sepia(50%) saturate(1000%) hue-rotate(330deg) brightness(90%) contrast(90%);
}

.contact a {
  color: #bd100f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.contact a:hover {
  color: #ff6600;
  text-decoration: underline;
}

/* ===================== */
/* FOOTER STYLES - UPDATED */
/* ===================== */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0 30px;
}

.container-footer {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.link-group,
.link-group-2,
.link-group-3,
.link-group-4 {
  width: 100%;
}

.link-group h4,
.link-group-2 h4,
.link-group-3 h4{
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: left;
}

.link-group-4 h4{
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  margin-right: 0;
}

.link-group a,
.link-group-2 a,
.link-group-3 a {
  display: block;
  color: #999;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: left;
}

.link-group a:hover,
.link-group-2 a:hover,
.link-group-3 a:hover {
  color: #cf4d5f;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 50px;
  margin-top: 20px;
  justify-content: center;
  margin-right: 40px;
}

.social-icons a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.social-icons a:hover {
  color: #cf4d5f;
  transform: scale(1.2);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  text-align: center;
}

/* ===================== */
/* RESPONSIVE STYLES */
/* ===================== */
@media (max-width: 1024px) {
  .about {
      padding: 6rem 0;
  }
  
  .about h2 {
      font-size: 2.2rem;
  }
  
  .about p {
      font-size: 1.1rem;
  }
  
  .client-title,
  .client-title-our {
      font-size: 1.8rem;
  }
  
  .marquee-img img {
      max-height: 60px;
  }

  .leadership-title {
      font-size: 2rem;
  }

  .leader-card h3 {
      font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .header-container {
      flex-direction: row;
      align-items: center;
      gap: 15px;
      padding: 0 15px;
  }
  
  .hamburger {
      display: block;
  }
  
  .main-nav {
      position: fixed;
      top: 90px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 90px);
      background-color: #000;
      transition: all 0.3s ease;
      z-index: 1000;
  }
  
  .main-nav.active {
      left: 0;
  }
  
  .main-nav ul {
      flex-direction: column;
      height: 100%;
      justify-content: center;
      align-items: center;
      gap: 30px;
  }
  
  .main-nav ul li a {
      font-size: 1.2rem;
  }
  
  /* Adjust video container for mobile */
  .video-container {
      top: 20px;
      height: calc(100vh - 70px);
  }
  
  /* Adjust header height for mobile */
  .site-header {
      padding: 5px 0;
  }
  
  .header-container {
      min-height: 60px;
  }
  
  .logo-wrap img {
      max-height: 50px;
      max-width: 200px;
  }
  
  /* Adjust carousel position */
  .hero-carousel {
      margin-top: 70px;
  }
  
  .about {
      padding: 4rem 0;
  }
  
  .about h2 {
      font-size: 2rem;
  }
  
  .about p {
      font-size: 1rem;
  }

  .about-title,
  .about-line {
      font-size: 2rem;
  }
  
  .about-reach,
  .about-network {
      font-size: 2.5rem;
  }

  .agency-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
  }

  .agency-logo {
      max-width: 100px;
  }
  
  .service-title,
  .service-title-we {
      font-size: 1.8rem;
  }
  
  .services-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .leadership-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .leader-image {
      height: 200px;
  }
  
  .leader-image img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .client-title,
  .client-title-our {
      font-size: 1.6rem;
  }
  
  .local-content {
      padding: 0 15px;
  }
  
  .local-logo img {
      max-width: 200px;
  }
  
  .stat-number {
      font-size: 1.3rem;
  }
  
  .stat-label {
      font-size: 0.8rem;
  }

  /* Footer mobile adjustments */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .social-icons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
    margin-left: 40px;
  }
}

@media (max-width: 480px) {
  .header-container {
      flex-direction: column;
      align-items: center;
      padding: 15px;
      gap: 15px;
  }

  .main-nav ul {
      width: 100%;
      justify-content: center;
  }
  
  .logo-wrap img {
      max-width: 200px;
      max-height: 70px;
  }

  .about {
      padding: 3rem 0;
  }
  
  .about h2 {
      font-size: 1.8rem;
  }
  
  .about p {
      font-size: 0.9rem;
  }

  .about-title,
  .about-line {
      font-size: 1.8rem;
  }
  
  .about-reach,
  .about-network {
      font-size: 2rem;
  }

  .agency-grid {
      grid-template-columns: 1fr;
      gap: 15px;
  }
  
  .service-title,
  .service-title-we {
      font-size: 1.5rem;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
  }

  .leadership-grid {
      grid-template-columns: 1fr;
  }

  .leadership-title {
      font-size: 3rem;
  }
  
  .client-title,
  .client-title-our {
      font-size: 3rem;
  }
  
  .marquee-content {
      gap: 20px;
  }
  
  .marquee-img img {
      max-height: 40px;
  }
  
  .local-stats {
      gap: 1rem;
  }
  
  .stat-item {
      flex: 1 0 100px;
  }
  
  .stat-number {
      font-size: 1.2rem;
  }
  
  .stat-label {
      font-size: 0.7rem;
  }
  
  .local-description p {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px 0;
  }
  
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    min-height: 60px;
    gap: 0;
  }
  
  .logo-wrap {
    order: 1;
    flex: 0 0 auto;
  }
  
  .logo-wrap img {
    max-width: 150px;
    max-height: 50px;
  }
  
  .hamburger {
    order: 2;
    display: block;
    padding: 5px;
  }
  
  .main-nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #000;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  .main-nav ul li a {
    font-size: 1.2rem;
  }
  .hero-carousel{
    margin-top: 19px;
  }
  
 .video-container { display: none !important;}
 
}

